home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hydra_imap.nasl < prev    next >
Text File  |  2005-03-31  |  4KB  |  106 lines

  1. #TRUSTED 820f588bad839fce376c5f1dca09ae8c112b53e1cd45e6fab2ccab1846710ad8eb5b4add0cfb22763c90887ee7f3b25eb572ba26f560967f091b55438d0f3b903fefc0bc2ef24e412875f971e2e9c19965872d021c7d4ea0478628856b3cbe5f8699757a17f4472848b3021fefdaabc75bad3331809927ebdea200a32968e744a31be141d9d3213a77bc706d385f200868757238da5154ff0674e5e2e01419633fc9487558d9646ea21560db0ffeb9038f398b09a41868e4393a47e07eeb4a21e289cc775e5fd2564dc40daaf8e2b0f14e52765777cc007fd454dd0d9be5cbcb3669ec28fdc5e66b7c69bbe857b245d59e6c8c37bd0939fac5eb5b0b6b8fba29538dceab7711a98249f2b82fce39e000c741b1d89c102ee2816c8e86c5158f2ab404db2b88cf85abf184ae62e78bcdfb74bf0d965229581825d4a128384939500709ec99e8e388416d0f9157a45d2e7ff6c6f3bc8bce1ba48d1bf142d91f9350d57b122599659f188e4129515ee1a015c7ba12d20e984a7b50b083b767bd8732182e22eec4730f4646616bdf3670dcf235c6dd28aa61b035219fce9236ccb5aa92b0b7b59658e75b2eb67b8daed1b9394fe4eb808c9b3d202def97d674da746e50cab5c623dc081e05e6eb0bb775e150832d9c65b4443f14b7a6ddbbf62e11d424d67784f5d83f95ef266fe6170141bb25c629086acdce79925a895ef854b8bd
  2. #
  3. # This script was written by Michel Arboi <arboi@alussinan.org>
  4. #
  5. # GPL
  6. #
  7.  
  8. if (! defined_func("script_get_preference_file_location")) exit(0);
  9. if (! find_in_path("hydra")) exit(0);
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(15876);
  15.  script_version ("1.2");
  16.  name["english"] = "Hydra: IMAP";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. This plugin runs Hydra to find IMAP accounts & passwords by brute force.
  21.  
  22. See the section 'plugins options' to configure it
  23. ";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Brute force IMAP authentication with Hydra";
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_ATTACK);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  33.  script_family(english:"Brute force attacks");
  34.  script_require_keys("Secret/hydra/logins_file", "Secret/hydra/passwords_file");
  35.  script_require_ports("Services/imap", 143);
  36.  script_dependencies("hydra_options.nasl", "find_service.nes", "doublecheck_std_services.nasl");
  37.  exit(0);
  38. }
  39.  
  40. #
  41.  
  42. throrough = get_kb_item("global_settings/thorough_tests");
  43. if ("yes" >!< throrough) exit(0);
  44. logins = get_kb_item("Secret/hydra/logins_file");
  45. passwd = get_kb_item("Secret/hydra/passwords_file");
  46. if (logins == NULL || passwd == NULL) exit(0);
  47.  
  48. port = get_kb_item("Services/imap");
  49. if (! port) port = 143;
  50. if (! get_port_state(port)) exit(0);
  51.  
  52. timeout = get_kb_item("/tmp/hydra/timeout"); timeout = int(timeout);
  53. tasks = get_kb_item("/tmp/hydra/tasks"); task = int(tasks);
  54.  
  55. empty = get_kb_item("/tmp/hydra/empty_password");
  56. login_pass = get_kb_item("/tmp/hydra/login_password");
  57. exit_asap = get_kb_item("/tmp/hydra/exit_ASAP");
  58. tr = get_kb_item("Transports/TCP/"+port);
  59.  
  60. i = 0;
  61. argv[i++] = "hydra";
  62. argv[i++] = "-s"; argv[i++] = port;
  63. argv[i++] = "-L"; argv[i++] = logins;
  64. argv[i++] = "-P"; argv[i++] = passwd;
  65. s = "";
  66. if (empty) s = "n";
  67. if (login_pass) s+= "s";
  68. if (s)
  69. {
  70.   argv[i++] = "-e"; argv[i++] = s;
  71. }
  72. if (exit_asap) argv[i++] = "-f";
  73. if (tr >= ENCAPS_SSLv2) argv[i++] = "-S";
  74.  
  75. if (timeout > 0)
  76. {
  77.   argv[i++] = "-w";
  78.   argv[i++] = timeout;
  79. }
  80. if (tasks > 0)
  81. {
  82.   argv[i++] = "-t";
  83.   argv[i++] = tasks;
  84. }
  85.  
  86. argv[i++] = get_host_ip();
  87. argv[i++] = "imap";
  88.  
  89. report = "";
  90. results = pread(cmd: "hydra", argv: argv, nice: 5);
  91. foreach line (split(results))
  92. {
  93.   v = eregmatch(string: line, pattern: 'host:.*login: *(.*) password: *(.*)$');
  94.   if (! isnull(v))
  95.   {
  96.     l = chomp(v[1]);
  97.     p = chomp(v[2]);
  98.     report = strcat(report, 'username: ', l, '\tpassword: ', p, '\n');
  99.     set_kb_item(name: 'Hydra/imap/'+port, value: l + '\t' + p);
  100.   }
  101. }
  102.  
  103. if (report)
  104.   security_hole(port: port, 
  105.     data: 'Hydra was able to break the following IMAP accounts:\n' + report);
  106.